home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / pine3.07 / c-client / makefile.dos < prev    next >
Encoding:
Makefile  |  1992-03-09  |  2.3 KB  |  70 lines

  1. # Program:    Portable C client makefile -- MS-DOS version
  2. #
  3. # Author:    Mark Crispin
  4. #        Networks and Distributed Computing
  5. #        Computing & Communications
  6. #        University of Washington
  7. #        Administration Building, AG-44
  8. #        Seattle, WA  98195
  9. #        Internet: MRC@CAC.Washington.EDU
  10. #
  11. # Date:        11 May 1989
  12. # Last Edited:    9 March 1992
  13. #
  14. # Copyright 1992 by the University of Washington
  15. #
  16. #  Permission to use, copy, modify, and distribute this software and its
  17. # documentation for any purpose and without fee is hereby granted, provided
  18. # that the above copyright notice appears in all copies and that both the
  19. # above copyright notice and this permission notice appear in supporting
  20. # documentation, and that the name of the University of Washington not be
  21. # used in advertising or publicity pertaining to distribution of the software
  22. # without specific, written prior permission.  This software is made
  23. # available "as is", and
  24. # THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  25. # WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  26. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  27. # NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  28. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  29. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  30. # (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  31. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  32.  
  33.  
  34. osdep.h: os_dos.h
  35.     copy os_dos.h osdep.h
  36.  
  37. mtest.obj: mail.h smtp.h misc.h osdep.h mtest.c
  38.     cl -c -AL mtest.c
  39.  
  40. mail.obj: mail.h misc.h osdep.h mail.c
  41.     cl -c -AL mail.c
  42.  
  43. imap2.obj: mail.h imap2.h misc.h osdep.h imap2.c
  44.     cl -c -AL imap2.c
  45.  
  46. smtp.obj: mail.h smtp.h rfc822.h misc.h osdep.h smtp.c
  47.     cl -c -AL smtp.c
  48.  
  49. nntp.obj: mail.h nntp.h smtp.h rfc822.h misc.h osdep.h nntp.c
  50.     cl -c -AL nntp.c
  51.  
  52. rfc822.obj: mail.h rfc822.h misc.h rfc822.c
  53.     cl -c -AL rfc822.c
  54.  
  55. misc.obj: mail.h misc.h misc.h misc.c
  56.     cl -c -AL misc.c
  57.  
  58. osdep.obj: mail.h osdep.h os_dos.c
  59.     erase osdep.obj
  60.     cl -c -AL os_dos.c
  61.     rename os_dos.obj osdep.obj
  62.  
  63. cclient.lib: mail.obj imap2.obj smtp.obj nntp.obj rfc822.obj misc.obj \
  64.     rfc822.obj osdep.obj
  65.     erase cclient.lib
  66.     lib cclient +mail+imap2+smtp+nntp+misc+rfc822+osdep;
  67.  
  68. mtest.exe: mtest.obj cclient.lib
  69.     link /stack:32767 mtest.obj,mtest.exe,,cclient.lib llibsock.lib
  70.